/*
   0. GOOGLE FONTS IMPORT
   */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');


/* 
   1. CSS CUSTOM PROPERTIES — THEME SYSTEM
*/
/* --- Default Light Theme --- */
:root,
[data-theme="light"] {
  --mt-bg: #ffffff;
  --mt-bg-alt: #f9f9f9;
  --mt-surface: #ffffff;
  --mt-text: #303030;
  --mt-text-secondary: #595959;
  --mt-text-muted: #ababab;
  --mt-border: #ededed;
  --mt-accent: #cdb083;
  --mt-accent-hover: #b89a6e;
  --mt-header-bg: rgba(255, 255, 255, 1);
  --mt-header-text: #444444;
  --mt-input-bg: #ffffff;
  --mt-input-border: #ededed;
  --mt-card-bg: #ffffff;
  --mt-card-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --mt-overlay: rgba(0, 0, 0, 0.5);
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --mt-bg: #121212;
  --mt-bg-alt: #1a1a1a;
  --mt-surface: #1e1e1e;
  --mt-text: #a2a2a2;
  --mt-text-secondary: #7b7878;
  --mt-text-muted: #757575;
  --mt-border: #2a2a2a;
  --mt-accent: #d4bc96;
  --mt-accent-hover: #e0cba8;
  --mt-header-bg: rgba(18, 18, 18, 0.97);
  --mt-header-text: #e0e0e0;
  --mt-input-bg: #1e1e1e;
  --mt-input-border: #333333;
  --mt-card-bg: #1e1e1e;
  --mt-card-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  --mt-overlay: rgba(0, 0, 0, 0.7);
}

/* --- Yellow Contrast --- */
[data-theme="yellow"] {
  --mt-bg: #ffface;
  --mt-bg-alt: #fff8b8;
  --mt-surface: #fffde0;
  --mt-text: #E07A5F;
  --mt-text-secondary: #d0c420;
  --mt-text-muted: #7a7200;
  --mt-border: #e6e0a0;
  --mt-accent: #8a7000;
  --mt-accent-hover: #6d5800;
  --mt-header-bg: rgba(255, 250, 206, 0.97);
  --mt-header-text: #2d2a00;
  --mt-input-bg: #fffde0;
  --mt-input-border: #d4ce80;
  --mt-card-bg: #fffde0;
  --mt-card-shadow: 0 2px 16px rgba(100, 90, 0, 0.08);
  --mt-overlay: rgba(50, 45, 0, 0.5);
}

/* --- Red Contrast --- */
[data-theme="red"] {
  --mt-bg: #ffd1b9;
  --mt-bg-alt: #ffc4a6;
  --mt-surface: #ffe0d0;
  --mt-text: #af856c;
  --mt-text-secondary: #ac7341;
  --mt-text-muted: #8a5530;
  --mt-border: #e6a880;
  --mt-accent: #da7228;
  --mt-accent-hover: #6d2e00;
  --mt-header-bg: rgba(255, 209, 185, 0.97);
  --mt-header-text: #3a1500;
  --mt-input-bg: #ffe0d0;
  --mt-input-border: #d49570;
  --mt-card-bg: #ffe0d0;
  --mt-card-shadow: 0 2px 16px rgba(100, 30, 0, 0.08);
  --mt-overlay: rgba(50, 15, 0, 0.5);
}


/*
   1b. FONT SCALING — ROOT VARIABLE
    */
html {
  --mt-base-font-size: 16px;
}


/*
   2. THEME APPLICATION — Body & Major Layout Elements
*/

/* Body background & text */
[data-theme="dark"] body,
[data-theme="dark"] #main,
[data-theme="dark"] .master_container,
[data-theme="yellow"] body,
[data-theme="yellow"] #main,
[data-theme="yellow"] .master_container,
[data-theme="red"] body,
[data-theme="red"] #main,
[data-theme="red"] .master_container {
  background-color: var(--mt-bg) !important;
  color: var(--mt-text) !important;
}

/* Paragraphs and body text */
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span,
[data-theme="dark"] .aio-icon-description,
[data-theme="dark"] .icon_description p,
[data-theme="yellow"] p,
[data-theme="yellow"] li,
[data-theme="yellow"] span,
[data-theme="yellow"] .aio-icon-description,
[data-theme="yellow"] .icon_description p,
[data-theme="red"] p,
[data-theme="red"] li,
[data-theme="red"] span,
[data-theme="red"] .aio-icon-description,
[data-theme="red"] .icon_description p {
  color: var(--mt-text-secondary) !important;
}

/* Headings */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="yellow"] h1,
[data-theme="yellow"] h2,
[data-theme="yellow"] h3,
[data-theme="yellow"] h4,
[data-theme="yellow"] h5,
[data-theme="yellow"] h6,
[data-theme="red"] h1,
[data-theme="red"] h2,
[data-theme="red"] h3,
[data-theme="red"] h4,
[data-theme="red"] h5,
[data-theme="red"] h6 {
  color: var(--mt-text) !important;
}

/* Links */
[data-theme="dark"] a:not(.mt-ctrl-btn):not(.mt-theme-option),
[data-theme="yellow"] a:not(.mt-ctrl-btn):not(.mt-theme-option),
[data-theme="red"] a:not(.mt-ctrl-btn):not(.mt-theme-option) {
  color: var(--mt-text-secondary) !important;
}

[data-theme="dark"] a:hover:not(.mt-ctrl-btn):not(.mt-theme-option),
[data-theme="yellow"] a:hover:not(.mt-ctrl-btn):not(.mt-theme-option),
[data-theme="red"] a:hover:not(.mt-ctrl-btn):not(.mt-theme-option) {
  color: var(--mt-accent) !important;
}

/* Header after scroll */
[data-theme="dark"] header.navbar.header_after_scroll,
[data-theme="yellow"] header.navbar.header_after_scroll,
[data-theme="red"] header.navbar.header_after_scroll {
  background-color: var(--mt-header-bg) !important;
}

[data-theme="dark"] .header_after_scroll .navbar-collapse ul.navbar-nav>li>a,
[data-theme="yellow"] .header_after_scroll .navbar-collapse ul.navbar-nav>li>a,
[data-theme="red"] .header_after_scroll .navbar-collapse ul.navbar-nav>li>a {
  color: var(--mt-header-text) !important;
}

/* Page content backgrounds */
[data-theme="dark"] section.page_content,
[data-theme="dark"] .blog-default,
[data-theme="dark"] .post-content,
[data-theme="dark"] .related_post_bg,
[data-theme="yellow"] section.page_content,
[data-theme="yellow"] .blog-default,
[data-theme="yellow"] .post-content,
[data-theme="yellow"] .related_post_bg,
[data-theme="red"] section.page_content,
[data-theme="red"] .blog-default,
[data-theme="red"] .post-content,
[data-theme="red"] .related_post_bg {
  background-color: var(--mt-bg) !important;
}

/* VC row backgrounds — only override non-image backgrounds */
[data-theme="dark"] .vc_row:not([style*="background-image"]) .upb_row_bg,
[data-theme="yellow"] .vc_row:not([style*="background-image"]) .upb_row_bg,
[data-theme="red"] .vc_row:not([style*="background-image"]) .upb_row_bg {
  background-color: var(--mt-bg-alt) !important;
}

/* Form inputs */
[data-theme="dark"] .wpcf7 input,
[data-theme="dark"] .wpcf7 textarea,
[data-theme="dark"] .wpcf7 select,
[data-theme="yellow"] .wpcf7 input,
[data-theme="yellow"] .wpcf7 textarea,
[data-theme="yellow"] .wpcf7 select,
[data-theme="red"] .wpcf7 input,
[data-theme="red"] .wpcf7 textarea,
[data-theme="red"] .wpcf7 select {
  background-color: var(--mt-input-bg) !important;
  border-color: var(--mt-input-border) !important;
  color: var(--mt-text) !important;
}

/* Borders */
[data-theme="dark"] .widget li,
[data-theme="dark"] table td,
[data-theme="dark"] table th,
[data-theme="yellow"] .widget li,
[data-theme="yellow"] table td,
[data-theme="yellow"] table th,
[data-theme="red"] .widget li,
[data-theme="red"] table td,
[data-theme="red"] table th {
  border-color: var(--mt-border) !important;
}

/* Dropdown menus */
[data-theme="dark"] .menu-simple ul.menu-depth-1,
[data-theme="dark"] .menu-simple ul.menu-depth-1 ul,
[data-theme="dark"] header ul.menu-depth-1,
[data-theme="dark"] header ul.menu-depth-1 ul {
  background-color: var(--mt-surface) !important;
}

[data-theme="yellow"] .menu-simple ul.menu-depth-1,
[data-theme="yellow"] .menu-simple ul.menu-depth-1 ul,
[data-theme="yellow"] header ul.menu-depth-1,
[data-theme="yellow"] header ul.menu-depth-1 ul {
  background-color: var(--mt-surface) !important;
}

[data-theme="red"] .menu-simple ul.menu-depth-1,
[data-theme="red"] .menu-simple ul.menu-depth-1 ul,
[data-theme="red"] header ul.menu-depth-1,
[data-theme="red"] header ul.menu-depth-1 ul {
  background-color: var(--mt-surface) !important;
}

/* Dropdown menu items text */
[data-theme="dark"] .navbar-collapse ul.menu-depth-1 li a,
[data-theme="dark"] .dl-menuwrapper li a,
[data-theme="yellow"] .navbar-collapse ul.menu-depth-1 li a,
[data-theme="yellow"] .dl-menuwrapper li a,
[data-theme="red"] .navbar-collapse ul.menu-depth-1 li a,
[data-theme="red"] .dl-menuwrapper li a {
  color: var(--mt-text) !important;
}

/* VC Content boxes and content elements */
[data-theme="dark"] .ult-content-box-content,
[data-theme="dark"] .wpb_text_column,
[data-theme="dark"] .wpb_content_element,
[data-theme="yellow"] .ult-content-box-content,
[data-theme="yellow"] .wpb_text_column,
[data-theme="yellow"] .wpb_content_element,
[data-theme="red"] .ult-content-box-content,
[data-theme="red"] .wpb_text_column,
[data-theme="red"] .wpb_content_element {
  color: var(--mt-text-secondary) !important;
}

/* Widget titles and headings in theme modes */
[data-theme="dark"] .widget h4,
[data-theme="dark"] .widget h2,
[data-theme="dark"] .custom-widget h4,
[data-theme="yellow"] .widget h4,
[data-theme="yellow"] .widget h2,
[data-theme="yellow"] .custom-widget h4,
[data-theme="red"] .widget h4,
[data-theme="red"] .widget h2,
[data-theme="red"] .custom-widget h4 {
  color: var(--mt-text) !important;
}

/* UVC headings */
[data-theme="dark"] .uvc-main-heading h2,
[data-theme="dark"] .uvc-heading,
[data-theme="dark"] .ult-responsive,
[data-theme="yellow"] .uvc-main-heading h2,
[data-theme="yellow"] .uvc-heading,
[data-theme="yellow"] .ult-responsive,
[data-theme="red"] .uvc-main-heading h2,
[data-theme="red"] .uvc-heading,
[data-theme="red"] .ult-responsive {
  color: var(--mt-text) !important;
}


/*
   3. MARKET TICKER — Fixed at Top, Pushes Content Down
   */

/* Push body content below the fixed ticker */
body {
  padding-top: 38px !important;
}

/* Push the fixed navbar below the ticker so logo and menu are visible */
header.navbar-fixed-top {
  top: 38px !important;
}

.mt-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  /* Above everything including WP admin bar */
  height: 38px;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(205, 176, 131, 0.25);
  overflow: hidden;
  font-family: 'Inter', 'JetBrains Mono', system-ui, sans-serif;
  display: flex;
  align-items: center;
}

/* Fade edge on the left where the track begins/ends */
.mt-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

/* -------------------------------------------------------------------
   IST CLOCK — fixed on the right corner of the ticker band
   ------------------------------------------------------------------- */
.mt-ticker__clock {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 100%;
  background: linear-gradient(135deg, #0d0d0d 0%, #161616 100%);
  border-left: 1px solid rgba(205, 176, 131, 0.3);
  flex-shrink: 0;
  z-index: 3;
  position: relative;
}

.mt-ticker__clock-icon {
  font-size: 13px;
  line-height: 1;
}

.mt-ticker__clock-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(205, 176, 131, 0.8);
}

.mt-ticker__clock-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #00ffd9;
  letter-spacing: 0.8px;
  min-width: 64px;
  text-align: center;
}

/* -------------------------------------------------------------------
   LIVE / DEMO STATUS BADGE
   ------------------------------------------------------------------- */
.mt-ticker__live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  margin: 0 10px 0 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  z-index: 3;
}

.mt-ticker__live-badge--live {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.mt-ticker__live-badge--offline {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* Pulsing green dot for LIVE */
.mt-ticker__live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: mt-live-pulse 1.5s ease-in-out infinite;
}

@keyframes mt-live-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
  }
}

/* Scrolling track */
.mt-ticker__track {
  display: flex;
  align-items: center;
  animation: mt-ticker-scroll 45s linear infinite;
  white-space: nowrap;
  will-change: transform;
  flex: 1;
  min-width: 0;
}

.mt-ticker__track:hover {
  animation-play-state: paused;
}

@keyframes mt-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Individual ticker item */
.mt-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  cursor: default;
  transition: opacity 0.2s ease, background-color 0.4s ease;
}

.mt-ticker__item:hover {
  opacity: 0.8;
}

/* Flash animation on live price update */
.mt-ticker__item--flash {
  background-color: rgba(205, 176, 131, 0.08);
}

/* Symbol name */
.mt-ticker__symbol {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Price */
.mt-ticker__price {
  color: #ffffff;
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 12px;
  font-weight: 500;
}

/* Change (green for up, red for down) */
.mt-ticker__change {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 3px;
}

.mt-ticker__change--up {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.mt-ticker__change--down {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Dot separator between items */
.mt-ticker__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(205, 176, 131, 0.4);
  margin: 0 4px;
  flex-shrink: 0;
}

/* Responsive: smaller on mobile */
@media (max-width: 768px) {
  body {
    padding-top: 32px !important;
  }

  header.navbar-fixed-top {
    top: 32px !important;
  }

  .mt-ticker {
    height: 32px;
  }

  /* Hide clock label and icon on small screens to save space */
  .mt-ticker__clock-label,
  .mt-ticker__clock-icon {
    display: none;
  }

  .mt-ticker__clock {
    padding: 0 8px;
    gap: 0;
  }

  .mt-ticker__clock-time {
    font-size: 10px;
    min-width: 50px;
  }

  .mt-ticker__live-badge {
    font-size: 8px;
    padding: 2px 6px;
    margin: 0 4px;
  }

  .mt-ticker__item {
    padding: 0 16px;
    font-size: 10px;
    gap: 4px;
  }

  .mt-ticker__symbol {
    font-size: 9px;
  }

  .mt-ticker__price {
    font-size: 10px;
  }

  .mt-ticker__change {
    font-size: 9px;
    padding: 1px 4px;
  }
}


/*
   4. FLOATING CONTROL PANEL — Fixed at Bottom Right, Toggleable
   */

.mt-controls {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Toggle button (Accessibility text) */
.mt-controls__toggle {
  padding: 10px 18px;
  border-radius: 24px;
  background: rgba(16, 16, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(205, 176, 131, 0.3);
  color: #00ffd9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  outline: none;
}

.mt-controls__toggle:hover {
  background: rgba(16, 16, 16, 0.95);
  border-color: rgba(205, 176, 131, 0.6);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.4);
}

.mt-controls__toggle.mt-active {
  background: rgba(205, 176, 131, 0.15);
}

/* Panel (appears above the toggle) */
.mt-controls__panel {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 220px;
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(205, 176, 131, 0.2);
  border-radius: 16px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.mt-controls__panel.mt-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Section labels */
.mt-controls__label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(205, 176, 131, 0.7);
  margin-bottom: 8px;
  display: block;
}

/* Divider between sections */
.mt-controls__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 12px 0;
}

/* Font size controls row */
.mt-controls__font-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mt-ctrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #e0e0e0 !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none !important;
  line-height: 1;
}

.mt-ctrl-btn:hover {
  background: rgba(205, 176, 131, 0.15);
  border-color: rgba(205, 176, 131, 0.3);
  color: #cdb083 !important;
}

.mt-ctrl-btn--reset {
  font-size: 10px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Current font size display */
.mt-controls__font-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  min-width: 36px;
}

/* Theme options */
.mt-controls__themes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mt-theme-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.mt-theme-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.mt-theme-option.mt-active {
  background: rgba(205, 176, 131, 0.12);
  border-color: rgba(205, 176, 131, 0.3);
  color: #cdb083 !important;
}

/* Color swatch in theme option */
.mt-theme-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.mt-theme-swatch--light {
  background: #ffffff;
}

.mt-theme-swatch--dark {
  background: #121212;
}

.mt-theme-swatch--yellow {
  background: #ffface;
}

.mt-theme-swatch--red {
  background: #ffd1b9;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .mt-controls {
    bottom: 16px;
    right: 16px;
  }

  .mt-controls__toggle {
    padding: 8px 14px;
    font-size: 11px;
  }

  .mt-controls__panel {
    width: 200px;
    right: 0;
    bottom: 56px;
  }
}


/*
   5. FONT SCALING — Selective Overrides
   */

/* Apply base font size scaling to key content areas */
html.mt-font-scaled body,
html.mt-font-scaled p,
html.mt-font-scaled li,
html.mt-font-scaled .aio-icon-description,
html.mt-font-scaled .icon_description p,
html.mt-font-scaled .info-circle-text,
html.mt-font-scaled .widget p,
html.mt-font-scaled .widget span,
html.mt-font-scaled .widget ul li,
html.mt-font-scaled .widget ul li a,
html.mt-font-scaled .the_content ul li,
html.mt-font-scaled .the_content ol li,
html.mt-font-scaled .testimonials-slide-content p,
html.mt-font-scaled .testimonials-slide-content span,
html.mt-font-scaled .related_posts_listing .related_post .excerpt,
html.mt-font-scaled .wpb_text_column p,
html.mt-font-scaled .master_container a,
html.mt-font-scaled .page_content a {
  font-size: var(--mt-base-font-size) !important;
}

/* Scale headings proportionally */
html.mt-font-scaled h1 {
  font-size: calc(var(--mt-base-font-size) * 2.75) !important;
}

html.mt-font-scaled h2:not(.the_title h2):not(.woocommerce-loop-product__title):not(.uvc-main-heading h2):not(h2.ult-responsive) {
  font-size: calc(var(--mt-base-font-size) * 2) !important;
}

html.mt-font-scaled h3:not(h3.aio-icon-title):not(h3.ult-responsive) {
  font-size: calc(var(--mt-base-font-size) * 1.56) !important;
}

html.mt-font-scaled h4 {
  font-size: calc(var(--mt-base-font-size) * 1.375) !important;
}

html.mt-font-scaled h5:not(.title) {
  font-size: calc(var(--mt-base-font-size) * 1.125) !important;
}

html.mt-font-scaled h6 {
  font-size: calc(var(--mt-base-font-size) * 0.75) !important;
}

/* Nav links (keep smaller) */
html.mt-font-scaled .header_after_scroll .navbar-collapse ul.navbar-nav>li>a {
  font-size: calc(var(--mt-base-font-size) * 0.6875) !important;
}

/* Dropdown menu items */
html.mt-font-scaled .navbar-collapse ul.menu-depth-1 li a,
html.mt-font-scaled .dl-menuwrapper li a {
  font-size: calc(var(--mt-base-font-size) * 0.875) !important;
}


/*
   6. SMOOTH TRANSITIONS
   */

html.mt-transitioning,
html.mt-transitioning *,
html.mt-transitioning *::before,
html.mt-transitioning *::after {
  transition: background-color 0.4s ease, color 0.3s ease, border-color 0.3s ease !important;
}


/*
   7. PRINT STYLES 
   */

@media print {

  .mt-ticker,
  .mt-controls {
    display: none !important;
  }
}