/*
Theme Name: Mydoll Pro
Theme URI: https://mydollpro.com
Author: Mydoll Pro Team
Author URI: https://mydollpro.com
Description: Professional WooCommerce theme for Mydoll Pro - High Performance, Mega Menu, Responsive Design
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xhub
Domain Path: /languages
Tags: e-commerce, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready

WC requires at least: 7.0
WC tested up to: 8.0
*/

/* ============================================
   CSS VARIABLES - Design System
   ============================================ */
:root {
    /* Colors */
    --xhub-primary: #1a1a1a;
    --xhub-primary-dark: #111111;
    --xhub-primary-light: #2a2a2a;
    --xhub-accent: #ff4757;
    --xhub-accent-hover: #ff3344;
    --xhub-text: #333333;
    --xhub-text-light: #777777;
    --xhub-text-muted: #999999;
    --xhub-bg: #ffffff;
    --xhub-bg-gray: #f5f5f5;
    --xhub-bg-dark: #1a1a1a;
    --xhub-border: #e5e5e5;
    --xhub-border-dark: #333333;
    
    /* Typography */
    --xhub-font-primary: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --xhub-font-size-xs: 11px;
    --xhub-font-size-sm: 13px;
    --xhub-font-size-base: 14px;
    --xhub-font-size-lg: 16px;
    --xhub-font-size-xl: 18px;
    
    /* Spacing */
    --xhub-space-xs: 4px;
    --xhub-space-sm: 8px;
    --xhub-space-md: 16px;
    --xhub-space-lg: 24px;
    --xhub-space-xl: 32px;
    
    /* Transitions */
    --xhub-transition-fast: 0.15s ease;
    --xhub-transition-base: 0.25s ease;
    --xhub-transition-slow: 0.35s ease;
    
    /* Shadows */
    --xhub-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --xhub-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --xhub-shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --xhub-shadow-xl: 0 12px 40px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --xhub-radius-sm: 4px;
    --xhub-radius-md: 8px;
    --xhub-radius-lg: 12px;
    --xhub-radius-full: 9999px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--xhub-font-primary);
    font-size: var(--xhub-font-size-base);
    line-height: 1.6;
    color: var(--xhub-text);
    background: var(--xhub-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent any layout shifts */
    overflow-x: hidden;
}
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--xhub-transition-fast);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-content {
    min-height: 50vh;
}

/* ============================================
   HEADER - MAIN STRUCTURE (NO STICKY)
   ============================================ */
.xhub-header,
header.xhub-header,
.site-header,
#masthead {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 1000;
    background: var(--xhub-bg);
    box-shadow: var(--xhub-shadow-sm);
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

/* Prevent any sticky behavior */
.xhub-header.sticky,
.xhub-header.fixed,
header.sticky,
header.fixed {
    position: relative !important;
    transform: none !important;
}

/* ============================================
   TOP BAR
   ============================================ */
.xhub-top-bar {
    background: var(--xhub-primary-dark);
    color: rgba(255,255,255,0.7);
    font-size: var(--xhub-font-size-xs);
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--xhub-space-lg);
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: var(--xhub-space-sm);
    color: #fff !important;
}

.top-bar-text i {
    color: var(--xhub-accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--xhub-space-lg);
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: var(--xhub-space-sm);
    color: #fff !important;
    transition: color var(--xhub-transition-fast);
}

.top-bar-right a:hover {
    color: var(--xhub-accent) !important;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.xhub-main-header {
    background: var(--xhub-primary);
    padding: 18px 0;
}

.main-header-inner {
    display: grid;
    grid-template-columns: 280px 1fr 380px;
    align-items: center;
    gap: var(--xhub-space-xl);
}

.header-section {
    display: flex;
    align-items: center;
}

.header-left {
    gap: var(--xhub-space-md);
}

.header-center {
    justify-content: center;
}

.header-right {
    justify-content: flex-end;
    gap: var(--xhub-space-sm);
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    padding: 5px;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-inner {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background var(--xhub-transition-fast);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    left: 0;
    transition: transform var(--xhub-transition-fast);
}

.hamburger-inner::before {
    top: -7px;
}

.hamburger-inner::after {
    bottom: -7px;
}

.menu-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   LOGO
   ============================================ */
.site-branding {
    flex-shrink: 0;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.site-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================================
   SEARCH FORM
   ============================================ */
.header-search-form {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 14px 120px 14px 20px;
    border: none;
    border-radius: var(--xhub-radius-full);
    background: #fff;
    font-size: var(--xhub-font-size-sm);
    color: var(--xhub-text);
    transition: box-shadow var(--xhub-transition-fast);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.search-input::placeholder {
    color: var(--xhub-text-muted);
}

.search-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--xhub-primary);
    color: #fff;
    border-radius: var(--xhub-radius-full);
    font-size: var(--xhub-font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background var(--xhub-transition-fast);
}

.search-submit:hover {
    background: var(--xhub-primary-dark);
}

.search-submit svg {
    flex-shrink: 0;
}

/* AJAX Search Results */
.search-results-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--xhub-transition-base);
}

.header-search-form.search-active .search-results-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-results-dropdown {
    background: #fff;
    border-radius: var(--xhub-radius-md);
    box-shadow: var(--xhub-shadow-xl);
    max-height: 400px;
    overflow-y: auto;
}

/* Search Product Item */
.search-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-bottom: 1px solid var(--xhub-border);
    transition: background 0.2s;
}

.search-product-item:hover {
    background: var(--xhub-bg-gray);
}

.search-product-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--xhub-bg-gray);
    border-radius: var(--xhub-radius-sm);
    overflow: hidden;
}

.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-product-info {
    flex: 1;
    min-width: 0;
}

.search-product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--xhub-text);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-product-price {
    font-size: 13px;
    color: var(--xhub-accent);
    font-weight: 600;
}

.search-product-price del {
    color: var(--xhub-text-muted);
    font-weight: 400;
    margin-right: 8px;
}

.search-view-all {
    display: block;
    padding: 12px 15px;
    text-align: center;
    background: var(--xhub-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.2s;
}

.search-view-all:hover {
    background: var(--xhub-primary-dark);
}

.search-loading,
.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--xhub-text-light);
}

/* ============================================
   HEADER TOOLS
   ============================================ */
.header-tool {
    display: flex;
    align-items: center;
    gap: var(--xhub-space-sm);
    padding: 8px 12px;
    color: #fff;
    font-size: var(--xhub-font-size-xs);
    border-radius: var(--xhub-radius-sm);
    transition: background var(--xhub-transition-fast);
    position: relative;
}

.header-tool:hover {
    background: rgba(255,255,255,0.1);
}

.tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tool-icon svg {
    stroke-width: 1.5;
}

.tool-label {
    white-space: nowrap;
}

/* Count Badge */
.count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--xhub-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--xhub-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Tool */
.cart-tool {
    gap: 10px;
    padding-right: 0;
}

.cart-subtotal {
    font-weight: 600;
    font-size: var(--xhub-font-size-sm);
}

/* Language & Currency Switchers */
.language-switcher,
.currency-switcher {
    position: relative;
}

.switcher-current {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.switcher-current img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

.switcher-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: var(--xhub-radius-md);
    box-shadow: var(--xhub-shadow-xl);
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--xhub-transition-base);
    z-index: 1001;
}

.language-switcher:hover .switcher-dropdown,
.currency-switcher:hover .switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.switcher-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--xhub-text);
    font-size: var(--xhub-font-size-sm);
    transition: background var(--xhub-transition-fast);
}

.switcher-option:hover {
    background: var(--xhub-bg-gray);
}

.switcher-option img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.xhub-navigation {
    background: #fff;
    border-bottom: 1px solid var(--xhub-border);
}

.main-navigation {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu > .menu-item {
    position: relative;
}

.nav-menu > .menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 22px;
    color: var(--xhub-text);
    font-size: var(--xhub-font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all var(--xhub-transition-base);
}

.nav-menu > .menu-item:hover > a {
    color: var(--xhub-primary);
    border-bottom-color: var(--xhub-primary);
}

/* Menu Labels (SALE, HOT, NEW) */
.menu-label {
    display: inline-block;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    margin-left: 4px;
}

.menu-label-sale {
    background: var(--xhub-accent);
    color: #fff;
}

.menu-label-hot {
    background: #ff6b35;
    color: #fff;
}

.menu-label-new {
    background: #2ecc71;
    color: #fff;
}

/* Dropdown Menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--xhub-primary);
    border-radius: 0 0 var(--xhub-radius-md) var(--xhub-radius-md);
    box-shadow: var(--xhub-shadow-xl);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--xhub-transition-base);
    z-index: 999;
}

.menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    color: rgba(255,255,255,0.8);
    font-size: var(--xhub-font-size-sm);
    transition: all var(--xhub-transition-fast);
}

.sub-menu .menu-item:hover > a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding-left: 28px;
}

/* Nested Dropdowns */
.sub-menu .menu-item {
    position: relative;
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 2px;
    border-radius: var(--xhub-radius-md);
}

/* ============================================
   MEGA MENU
   ============================================ */
.mega-menu-wrapper {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 1200px;
    max-width: 95vw;
    background: #fff;
    border-radius: 0 0 var(--xhub-radius-lg) var(--xhub-radius-lg);
    box-shadow: var(--xhub-shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--xhub-transition-base);
    z-index: 1000;
    overflow: hidden;
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 40px;
}

.mega-column {
    min-width: 0;
}

.mega-column-title {
    font-size: var(--xhub-font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--xhub-primary);
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--xhub-border);
}

.mega-column-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-column-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--xhub-text);
    font-size: var(--xhub-font-size-sm);
    padding: 6px 0;
    transition: all var(--xhub-transition-fast);
}

.mega-column-list li a:hover {
    color: var(--xhub-primary);
    padding-left: 5px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--xhub-transition-base);
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform var(--xhub-transition-base);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--xhub-border);
    background: var(--xhub-primary);
    color: #fff;
}

.mobile-menu-title {
    font-size: var(--xhub-font-size-lg);
    font-weight: 600;
}

.mobile-menu-close {
    color: #fff;
    padding: 5px;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav-menu .menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--xhub-text);
    font-size: var(--xhub-font-size-sm);
    border-bottom: 1px solid var(--xhub-border);
    transition: background var(--xhub-transition-fast);
}

.mobile-nav-menu .menu-item a:hover {
    background: var(--xhub-bg-gray);
}

.mobile-nav-menu .sub-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--xhub-bg-gray);
    padding-left: 20px;
}

.mobile-nav-menu .sub-menu.open {
    display: block;
}

.mobile-nav-menu .menu-item-has-children > a::after {
    content: '+';
    font-size: 18px;
    font-weight: 300;
}

.mobile-nav-menu .menu-item-has-children.open > a::after {
    content: '−';
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--xhub-border);
    background: var(--xhub-bg-gray);
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--xhub-text);
    font-weight: 600;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.xhub-breadcrumb-wrapper {
    background: var(--xhub-bg-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--xhub-border);
}

.xhub-breadcrumb {
    font-size: var(--xhub-font-size-sm);
    color: var(--xhub-text-light);
}

.xhub-breadcrumb a {
    color: var(--xhub-text);
}

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

.xhub-breadcrumb .delimiter {
    margin: 0 8px;
    color: var(--xhub-text-muted);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--xhub-bg-gray);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--xhub-border);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--xhub-primary);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--xhub-primary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--xhub-border-dark);
}

.footer-widget-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .main-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: var(--xhub-space-lg);
    }
    
    .header-tool .tool-label {
        display: none;
    }
    
    .mega-menu {
        width: 1000px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .xhub-top-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: var(--xhub-space-md);
    }
    
    .header-center {
        display: none;
    }
    
    .header-tool {
        padding: 8px;
    }
    
    .xhub-navigation {
        display: none;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-branding img {
        max-height: 40px;
    }
    
    .site-title {
        font-size: 18px;
    }
    
    .cart-subtotal {
        display: none;
    }
    
    .mobile-menu-panel {
        width: 100%;
        max-width: 100%;
    }
    
    .page-title {
        font-size: 24px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn { animation: fadeIn var(--xhub-transition-base); }
.animate-slideDown { animation: slideDown var(--xhub-transition-base); }
.animate-slideUp { animation: slideUp var(--xhub-transition-base); }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .xhub-header,
    .site-footer,
    .mobile-menu-toggle,
    .xhub-breadcrumb-wrapper {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
}

/* === MARQUEE SCROLL ANIMATION === */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HEADER FIX - Prevent Flickering */
.xhub-header,
header.xhub-header,
#masthead {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    transition: none !important;
    z-index: 1000;
    will-change: auto !important;
}
