/* ==========================================================================
   HEADER STYLES - Amazon Professional Layout
   ========================================================================== */
.aaima-header {
    background: var(--aaima-header-bg, #131921);
    color: var(--aaima-header-text, #ffffff);
    position: relative;
    z-index: var(--aaima-z-sticky);
}

/* Minimal Header Override */
.aaima-header.header-minimal {
    background: #fff;
    color: #333;
}

/* Ensure header-main has proper stacking context for search dropdown */
.aaima-header-top {
    background: var(--aaima-header-bg, #131921);
    padding: 8px 0;
    position: relative;
    z-index: 100;
}

.aaima-header-main {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 12px;
    height: 60px;
    position: relative;
    z-index: 100;
}

/* Navigation bar - lower z-index than search dropdown */
.aaima-nav {
    position: relative;
    z-index: 50;
    background: var(--aaima-nav-bg, #232f3e);
}

/* Base Navigation Bar Scrollable Styles */
.aaima-nav-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aaima-nav-scroll-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.aaima-nav-scroll-container {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.aaima-nav-scroll-container::-webkit-scrollbar {
    display: none;
}

.aaima-nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.aaima-nav-menu > li {
    position: relative;
}

.aaima-nav-menu > li > a {
    display: block;
    color: var(--aaima-header-text, #fff);
    text-decoration: none;
    font-size: var(--aaima-font-size-sm, 13px);
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: border-color 0.15s, background-color 0.15s;
}

.aaima-nav-menu > li > a:hover {
    border-color: var(--aaima-header-text, #fff);
    background: rgba(255, 255, 255, 0.05);
}

.nav-scroll-btn {
    background: linear-gradient(to right, var(--aaima-nav-bg, #232f3e) 70%, transparent);
    border: none;
    color: var(--aaima-header-text, #fff);
    padding: 10px 15px 10px 10px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-scroll-btn.nav-scroll-right {
    background: linear-gradient(to left, var(--aaima-nav-bg, #232f3e) 70%, transparent);
    padding: 10px 10px 10px 15px;
}

.nav-scroll-btn:hover {
    opacity: 0.8;
}

.nav-scroll-btn svg {
    width: 16px;
    height: 16px;
}

.aaima-header-main.layout-default {
    display: flex;
    align-items: center;
}

.aaima-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Logo */
.aaima-logo {
    flex-shrink: 0;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: border-color 0.15s;
}

.aaima-logo:hover {
    border-color: var(--aaima-header-text, #ffffff);
}

.aaima-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.aaima-logo a {
    display: flex;
    align-items: center;
    color: var(--aaima-header-text, #ffffff);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.aaima-logo .custom-logo-link,
.aaima-logo .custom-logo-link img {
    display: block;
    max-height: 40px;
    width: auto;
}

.aaima-logo .custom-logo,
.aaima-logo .default-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

.footer-logo-link,
.footer-logo-link img {
    display: inline-block;
    max-height: 50px;
    width: auto;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
}

/* Search Bar - Amazon Style */
.aaima-search {
    flex: 1;
    max-width: 800px;
    min-width: 300px;
}

/* ==========================================================================
   SEARCH STYLE VARIATIONS
   ========================================================================== */

/* Expanded Style (Default - Amazon Style) */
.aaima-search.search-expanded {
    flex: 1;
    max-width: 800px;
    min-width: 300px;
}

.aaima-search.search-expanded .aaima-search-form {
    display: flex;
}

/* Compact Style */
.aaima-search.search-compact {
    flex: 0 1 350px;
    min-width: 200px;
    max-width: 350px;
}

.aaima-search.search-compact .aaima-search-form {
    height: 38px;
}

.aaima-search.search-compact .search-category-select {
    display: none;
}

.aaima-search.search-compact .search-field {
    font-size: 14px;
    padding: 0 12px;
}

.aaima-search.search-compact .search-submit {
    padding: 0 14px;
}

.aaima-search.search-compact .search-submit svg,
.aaima-search.search-compact .search-submit .aaima-icon {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   END SEARCH STYLE VARIATIONS
   ========================================================================== */

.aaima-search-wrapper {
    position: relative;
    width: 100%;
}

.aaima-search-form {
    display: flex;
    align-items: stretch;
    height: 44px;
    border-radius: 4px;
    background: #fff;
    border: 2px solid transparent;
    transition: border-color 0.15s ease;
    /* Note: overflow removed to allow dropdown to show */
}

/* Apply border-radius to first and last children instead */
.aaima-search-form > *:first-child {
    border-radius: 2px 0 0 2px;
}

.aaima-search-form > *:last-child {
    border-radius: 0 2px 2px 0;
}

.aaima-search-form:focus-within {
    border-color: var(--aaima-primary, #ff9900);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

/* Category Select */
.search-category-select {
    position: relative;
    display: flex;
    align-items: center;
    background: #e6e6e6;
    border-right: 1px solid #cdcdcd;
    min-width: 50px;
}

.search-category-select select.search-category {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    padding: 0 30px 0 15px;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    height: 100%;
    min-width: 120px;
    outline: none;
    font-weight: 500;
}

.search-category-select select.search-category:hover {
    background: #d4d4d4;
}

.search-category-select .aaima-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
    width: 10px;
    height: 10px;
}

/* Search Input */
.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper .search-field {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 16px;
    font-size: 15px;
    color: #0f1111;
    outline: none;
    background: #fff;
}

.search-input-wrapper .search-field::placeholder {
    color: #888;
    font-size: 14px;
}

/* Search Submit Button */
.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    border: none;
    padding: 0 18px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-left: 1px solid #c7a53a;
}

.search-submit:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
}

.search-submit svg,
.search-submit .aaima-icon {
    width: 22px;
    height: 22px;
    color: #0f1111;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 450px;
    overflow-y: auto;
    display: none;
    z-index: 1050;
    border: 1px solid #ddd;
}

.search-results-dropdown.active {
    display: block;
}

/* Search Result Item */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #0f1111;
    border-bottom: 1px solid #eee;
    transition: background 0.15s ease;
}

.search-result-item:hover {
    background: #f7f7f7;
    text-decoration: none;
    color: #0f1111;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    color: #0066c0;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-item:hover .search-result-title {
    color: #c45500;
    text-decoration: underline;
}

.search-result-price {
    font-size: 14px;
    color: #b12704;
    font-weight: 600;
}

.search-result-rating {
    font-size: 12px;
    color: #ffa41c;
}

/* Search Loading */
.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

.search-loading .loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top-color: var(--aaima-primary, #ff9900);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

/* Search No Results */
.search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #666;
}

.search-no-results p {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.search-no-results .search-suggestions {
    font-size: 13px;
    color: #888;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1040;
    display: none;
}

.search-overlay.active {
    display: block;
}

/* Responsive Search */
@media (max-width: 992px) {
    .aaima-search {
        max-width: 100%;
        min-width: 200px;
    }
    
    .aaima-search.search-expanded .search-category-select {
        display: none;
    }
    
    .aaima-search-form {
        height: 40px;
    }
    
    /* Compact mode adjustments */
    .aaima-search.search-compact {
        flex: 0 1 280px;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    /* Expanded mode - full width on mobile */
    .aaima-search.search-expanded {
        order: 10;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    
    /* Compact mode on mobile */
    .aaima-search.search-compact {
        flex: 0 0 auto;
        order: 0;
        margin-top: 0;
    }
    
    .aaima-header-main {
        flex-wrap: wrap;
    }
}

/* Header Location - Amazon Style */
.aaima-header-location {
    flex-shrink: 0;
}

.location-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: border-color 0.15s ease;
}

.location-trigger:hover {
    border-color: var(--aaima-header-text, #ffffff);
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
}

.location-trigger svg {
    color: var(--aaima-header-text, #ffffff);
    flex-shrink: 0;
}

.location-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.location-label {
    font-size: 11px;
    color: var(--aaima-header-text, #ffffff);
    opacity: 0.85;
}

.location-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--aaima-header-text, #ffffff);
}

@media (max-width: 992px) {
    .aaima-header-location {
        display: none;
    }
}

/* Header Actions - Amazon Style */
.aaima-header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    flex-shrink: 0;
}

.aaima-header-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: border-color 0.15s;
    white-space: nowrap;
    line-height: 1.2;
}

.aaima-header-action:hover {
    border-color: var(--aaima-header-text, #ffffff);
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
}

.aaima-header-action-label {
    font-size: 12px;
    color: var(--aaima-header-text, #ffffff);
    opacity: 0.8;
    line-height: 1.2;
}

.aaima-header-action-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--aaima-header-text, #ffffff);
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1.2;
}

.aaima-header-action-text svg {
    width: 8px;
    height: 8px;
}

/* Wishlist Icon in Header */
.aaima-wishlist-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
}

.aaima-wishlist-icon:hover {
    border-color: var(--aaima-header-text, #ffffff);
    color: var(--aaima-header-text, #ffffff);
}

.aaima-wishlist-icon svg {
    width: 24px;
    height: 24px;
}

.aaima-wishlist-icon .aaima-wishlist-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--aaima-primary, #ff9900);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Compare Icon */
.aaima-compare-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: border-color 0.15s;
    color: var(--aaima-header-text, #ffffff);
}

.aaima-compare-icon:hover {
    border-color: var(--aaima-header-text, #ffffff);
    color: var(--aaima-header-text, #ffffff);
}

.aaima-compare-icon svg {
    width: 24px;
    height: 24px;
}

.aaima-compare-icon .aaima-compare-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--aaima-primary, #ff9900);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Wrapper & Icon - Amazon Style */
.aaima-cart-wrapper {
    position: relative;
    flex-shrink: 0;
}

.aaima-cart-icon {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: border-color 0.15s;
}

.aaima-cart-icon:hover {
    border-color: var(--aaima-header-text, #ffffff);
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
}

.aaima-cart-icon svg {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.aaima-cart-count {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aaima-primary, #ff9900);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.aaima-cart-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--aaima-header-text, #ffffff);
    line-height: 1;
    margin-bottom: 2px;
}

/* Account Icon (Sign In) */
.aaima-account-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
    transition: border-color 0.15s;
}

.aaima-account-icon:hover {
    border-color: var(--aaima-header-text, #ffffff);
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
}

.aaima-account-icon svg {
    width: 28px;
    height: 28px;
}

.aaima-account-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--aaima-header-text, #ffffff);
    margin-top: 2px;
}

/* Mini Cart - Hidden by default */
.aaima-mini-cart {
    position: absolute !important;
    top: 100%;
    right: 0;
    width: 360px;
    background: #fff !important;
    border-radius: var(--aaima-radius-md);
    box-shadow: var(--aaima-shadow-lg);
    z-index: var(--aaima-z-dropdown);
    display: none !important;
}

.aaima-mini-cart.active {
    display: block !important;
}

.aaima-mini-cart-header {
    padding: var(--aaima-spacing-md);
    border-bottom: 1px solid var(--aaima-border-light);
    font-weight: 600;
}

.aaima-mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.aaima-mini-cart-item {
    display: flex;
    padding: var(--aaima-spacing-md);
    border-bottom: 1px solid var(--aaima-border-light);
}

.aaima-mini-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: var(--aaima-spacing-md);
}

.aaima-mini-cart-item-info {
    flex: 1;
}

.aaima-mini-cart-item-title {
    font-size: var(--aaima-font-size-sm);
    margin-bottom: var(--aaima-spacing-xs);
}

.aaima-mini-cart-item-price {
    color: var(--aaima-link-hover);
    font-weight: 600;
}

.aaima-mini-cart-item-remove {
    color: var(--aaima-text-muted);
    cursor: pointer;
}

.aaima-mini-cart-footer {
    padding: var(--aaima-spacing-md);
}

.aaima-mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--aaima-spacing-md);
    font-weight: 600;
}

.aaima-mini-cart-buttons {
    display: flex;
    gap: var(--aaima-spacing-sm);
}

.aaima-mini-cart-buttons a {
    flex: 1;
    text-align: center;
}
/* ==========================================================================
   CUSTOM HEADER CONTENT
   ========================================================================== */
.aaima-header-custom-content {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: var(--aaima-header-text, #ffffff);
    font-size: var(--aaima-font-size-sm, 14px);
}

.aaima-header-custom-content a {
    color: var(--aaima-header-text, #ffffff);
    text-decoration: none;
}

.aaima-header-custom-content a:hover {
    color: var(--aaima-primary, #ff9900);
    text-decoration: underline;
}

.aaima-header-custom-content img {
    max-height: 40px;
    width: auto;
}

.aaima-header-custom-content .button,
.aaima-header-custom-content button {
    background: var(--aaima-primary, #ff9900);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: var(--aaima-radius-sm, 4px);
    cursor: pointer;
    font-size: var(--aaima-font-size-sm, 14px);
    font-weight: 500;
}

.aaima-header-custom-content .button:hover,
.aaima-header-custom-content button:hover {
    background: var(--aaima-accent-hover, #ff8000);
}

@media (max-width: 992px) {
    .aaima-header-custom-content {
        display: none;
    }
}

/* ==========================================================================
   BLOG & CORPORATE HEADER CUSTOM CONTENT
   ========================================================================== */

/* Blog Header Custom Content */
.blog-header-custom-content {
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #0f1111;
    font-size: 14px;
}

.blog-header-custom-content a {
    color: #0f1111;
    text-decoration: none;
}

.blog-header-custom-content a:hover {
    color: var(--aaima-primary, #ff9900);
    text-decoration: underline;
}

/* Corporate Header Custom Content */
.corporate-header-custom-content {
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #0f1111;
    font-size: 14px;
}

.corporate-header-custom-content a {
    color: #0f1111;
    text-decoration: none;
}

.corporate-header-custom-content a:hover {
    color: var(--aaima-primary, #ff9900);
    text-decoration: underline;
}

/* Shared Styles */
.blog-header-custom-content img,
.corporate-header-custom-content img {
    max-height: 36px;
    width: auto;
}

.blog-header-custom-content .button,
.blog-header-custom-content button,
.corporate-header-custom-content .button,
.corporate-header-custom-content button {
    background: var(--aaima-primary, #ff9900);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: var(--aaima-radius-sm, 4px);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.blog-header-custom-content .button:hover,
.blog-header-custom-content button:hover,
.corporate-header-custom-content .button:hover,
.corporate-header-custom-content button:hover {
    background: var(--aaima-accent-hover, #ff8000);
    color: #000;
}

/* Responsive - Hide on smaller screens */
@media (max-width: 992px) {
    .blog-header-custom-content,
    .corporate-header-custom-content {
        display: none;
    }
}

/* Show on tablets with reduced padding */
@media (min-width: 993px) and (max-width: 1200px) {
    .blog-header-custom-content,
    .corporate-header-custom-content {
        padding: 0 8px;
        font-size: 13px;
    }
}

/* ==========================================================================
   TRAVEL / BOOKING HEADER
   ========================================================================== */
.travel-topbar {
    background: var(--aaima-header-bg, #1a1a2e);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.travel-topbar .topbar-contact {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.travel-topbar .topbar-contact li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.travel-topbar .topbar-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.travel-topbar .topbar-contact a:hover {
    color: #fff;
}

.travel-topbar .topbar-promo {
    color: #e94560;
    font-weight: 500;
}

.travel-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.travel-topbar .topbar-social {
    display: flex;
    flex-direction: row;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.travel-topbar .topbar-social li {
    display: inline-flex;
}

.travel-topbar .topbar-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.travel-topbar .topbar-social a:hover {
    color: #e94560;
}

.travel-topbar .topbar-locale {
    display: flex;
    gap: 15px;
}

.travel-topbar .locale-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.travel-header {
    background: var(--aaima-header-bg, #16213e);
    padding: 15px 0;
}

.travel-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.travel-header .header-logo img {
    max-height: 45px;
    width: auto;
}

.travel-header .travel-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.travel-header .travel-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.travel-header .travel-menu > li > a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: color 0.2s;
}

.travel-header .travel-menu > li > a:hover {
    color: #e94560;
}

.travel-header .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.travel-header .header-action {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

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

.travel-header .cart-link {
    position: relative;
}

.travel-header .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #e94560;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-header .travel-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.travel-header .travel-all-btn:hover {
    border-color: #e94560;
    color: #e94560;
}

.travel-header .action-label {
    font-size: 13px;
}

.travel-header .travel-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e94560;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.travel-header .travel-cta:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

/* Travel Navigation Bar */
.travel-nav-bar {
    background: var(--aaima-header-bg, #16213e);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.travel-nav-bar .aaima-nav-menu > li > a {
    color: var(--aaima-header-text, #fff);
}

.travel-nav-bar .aaima-nav-menu > li > a:hover {
    color: var(--aaima-primary, #e94560);
    border-color: var(--aaima-primary, #e94560);
}

.travel-nav-bar .nav-scroll-btn {
    background: linear-gradient(to right, var(--aaima-header-bg, #16213e) 70%, transparent);
    color: var(--aaima-header-text, #fff);
}

.travel-nav-bar .nav-scroll-btn.nav-scroll-right {
    background: linear-gradient(to left, var(--aaima-header-bg, #16213e) 70%, transparent);
}

.travel-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 33, 62, 0.98);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.travel-search-overlay.active {
    display: flex;
}

.travel-search-overlay .search-overlay-inner {
    width: 100%;
    max-width: 750px;
    text-align: center;
}

.travel-search-overlay .search-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    padding: 10px;
}

.travel-search-overlay .search-overlay-close:hover {
    opacity: 1;
}

.travel-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.travel-search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.travel-search-form .search-field-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 0 20px;
}

.travel-search-form .search-field {
    flex: 1;
    border: none;
    padding: 15px;
    font-size: 16px;
    background: transparent;
    outline: none;
}

.travel-search-form .search-submit {
    background: #e94560;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.travel-search-form .search-submit:hover {
    background: #d63850;
}

.travel-search-form .search-close {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    opacity: 0.7;
}

.travel-search-form .search-close:hover {
    opacity: 1;
}

.travel-search-form .search-field-wrap svg {
    color: #999;
    flex-shrink: 0;
}

.travel-search-overlay .search-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.travel-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-height: 60vh;
    overflow-y: auto;
    z-index: 999999;
    display: none;
    margin-top: 4px;
    text-align: left;
}

.travel-search-results.active {
    display: block;
}

/* ==========================================================================
   RESTAURANT / FOOD HEADER
   ========================================================================== */
.restaurant-topbar {
    background: #2c2c2c;
    padding: 8px 0;
    font-size: 13px;
}

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

.restaurant-topbar .topbar-left {
    display: flex;
    gap: 25px;
}

.restaurant-topbar .topbar-hours,
.restaurant-topbar .topbar-address {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.restaurant-topbar .topbar-hours svg,
.restaurant-topbar .topbar-address svg {
    color: #d4a373;
}

.restaurant-topbar .topbar-center {
    flex: 1;
    text-align: center;
}

.restaurant-topbar .topbar-promo {
    color: #d4a373;
    font-weight: 500;
}

.restaurant-topbar .topbar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d4a373;
    text-decoration: none;
    font-weight: 500;
}

.restaurant-topbar .topbar-phone:hover {
    color: #e5b78a;
}

.restaurant-header {
    background: #1a1a1a;
    padding: 20px 0;
}

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

.restaurant-header .restaurant-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.restaurant-header .restaurant-logo img {
    max-height: 60px;
    width: auto;
}

.restaurant-header .header-nav-left,
.restaurant-header .header-nav-right {
    flex: 1;
}

.restaurant-header .header-nav-right {
    text-align: right;
}

.restaurant-header .restaurant-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.restaurant-header .restaurant-menu-right {
    justify-content: flex-end;
}

.restaurant-header .restaurant-menu > li > a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.2s;
}

.restaurant-header .restaurant-menu > li > a:hover {
    color: #d4a373;
}

.restaurant-header .restaurant-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.restaurant-header .cart-link {
    position: relative;
    color: #fff;
    padding: 8px;
}

.restaurant-header .cart-link:hover {
    color: #d4a373;
}

.restaurant-header .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4a373;
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-header .header-cta-group {
    display: flex;
    gap: 10px;
}

.restaurant-header .restaurant-cta-primary,
.restaurant-header .restaurant-cta-secondary {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
}

.restaurant-header .restaurant-cta-primary {
    background: #d4a373;
    color: #1a1a1a;
}

.restaurant-header .restaurant-cta-primary:hover {
    background: #e5b78a;
}

.restaurant-header .restaurant-cta-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.restaurant-header .restaurant-cta-secondary:hover {
    border-color: #d4a373;
    color: #d4a373;
}

.restaurant-phone-bar {
    display: none;
    background: #d4a373;
    padding: 10px 0;
    text-align: center;
}

.restaurant-phone-bar .phone-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

/* Restaurant Topbar - Additional Styles */
.restaurant-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.restaurant-topbar .topbar-social {
    display: flex;
    flex-direction: row;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.restaurant-topbar .topbar-social li {
    display: inline-flex;
}

.restaurant-topbar .topbar-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.restaurant-topbar .topbar-social a:hover {
    color: #d4a373;
}

.restaurant-topbar .topbar-email {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.restaurant-topbar .topbar-email svg {
    color: #d4a373;
}

.restaurant-topbar .topbar-email a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.restaurant-topbar .topbar-email a:hover {
    color: #d4a373;
}

/* Restaurant Header - Additional Styles */
.restaurant-header .header-action {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s;
}

.restaurant-header .header-action:hover {
    color: #d4a373;
}

.restaurant-header .restaurant-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.restaurant-header .restaurant-all-btn:hover {
    border-color: #d4a373;
    color: #d4a373;
}

/* Restaurant Navigation Bar (Quick Links) */
.restaurant-nav-bar {
    background: var(--aaima-header-bg, #1a1a1a);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.restaurant-nav-bar .aaima-nav-menu > li > a {
    color: var(--aaima-header-text, rgba(255, 255, 255, 0.85));
}

.restaurant-nav-bar .aaima-nav-menu > li > a:hover {
    color: var(--aaima-primary, #d4a574);
    border-color: var(--aaima-primary, #d4a574);
}

.restaurant-nav-bar .nav-scroll-btn {
    background: linear-gradient(to right, var(--aaima-header-bg, #1a1a1a) 70%, transparent);
    color: var(--aaima-header-text, #fff);
}

.restaurant-nav-bar .nav-scroll-btn.nav-scroll-right {
    background: linear-gradient(to left, var(--aaima-header-bg, #1a1a1a) 70%, transparent);
}

/* Restaurant Search Overlay */
.restaurant-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.restaurant-search-overlay.active {
    display: flex;
}

.restaurant-search-overlay .search-overlay-inner {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.restaurant-search-overlay .search-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.restaurant-search-overlay .search-overlay-close:hover {
    opacity: 1;
}

.restaurant-search-overlay .restaurant-search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.restaurant-search-overlay .search-field-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 0 20px;
}

.restaurant-search-overlay .search-field-wrap svg {
    color: #999;
    flex-shrink: 0;
}

.restaurant-search-overlay .search-field {
    flex: 1;
    border: none;
    padding: 15px;
    font-size: 16px;
    background: transparent;
    outline: none;
}

.restaurant-search-overlay .search-submit {
    background: #d4a373;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.restaurant-search-overlay .search-submit:hover {
    background: #e5b78a;
}

.restaurant-search-overlay .search-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.restaurant-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.restaurant-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-height: 60vh;
    overflow-y: auto;
    z-index: 999999;
    display: none;
    margin-top: 4px;
    text-align: left;
}

.restaurant-search-results.active {
    display: block;
}

/* ==========================================================================
   MINIMAL / CLEAN HEADER
   ========================================================================== */

/* Minimal Topbar */
.minimal-topbar {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

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

.minimal-topbar .topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.minimal-topbar .topbar-contact {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.minimal-topbar .topbar-contact li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.minimal-topbar .topbar-contact a {
    color: #666;
    text-decoration: none;
}

.minimal-topbar .topbar-contact a:hover {
    color: #000;
}

.minimal-topbar .topbar-text {
    color: #666;
}

.minimal-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.minimal-topbar .topbar-social {
    display: flex;
    flex-direction: row;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.minimal-topbar .topbar-social li {
    display: inline-flex;
}

.minimal-topbar .topbar-social a {
    color: #666;
    transition: color 0.2s;
}

.minimal-topbar .topbar-social a:hover {
    color: #000;
}

/* Minimal Main Header */
.minimal-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.minimal-header .minimal-logo img {
    max-height: 40px;
    width: auto;
}

.minimal-header .minimal-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.minimal-header .minimal-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.minimal-header .minimal-menu > li > a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: color 0.2s;
}

.minimal-header .minimal-menu > li > a:hover {
    color: #000;
}

.minimal-header .minimal-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s;
}

.minimal-header .minimal-menu > li > a:hover::after {
    width: 100%;
}

.minimal-header .minimal-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.minimal-header .header-action {
    color: #333;
    padding: 8px;
    transition: color 0.2s;
}

.minimal-header .header-action:hover {
    color: #000;
}

.minimal-header .minimal-cart {
    position: relative;
}

.minimal-header .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minimal-header .minimal-cta {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 25px;
    border: 2px solid #000;
    border-radius: 30px;
    transition: all 0.3s;
}

.minimal-header .minimal-cta:hover {
    background: #000;
    color: #fff;
}

.minimal-header .minimal-toggle .minimal-hamburger {
    width: 24px;
    height: 16px;
    position: relative;
}

.minimal-header .minimal-hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    left: 0;
    transition: all 0.3s;
}

.minimal-header .minimal-hamburger span:first-child {
    top: 0;
}

.minimal-header .minimal-hamburger span:last-child {
    bottom: 0;
}

/* Minimal Navigation Bar */
.aaima-nav.minimal-nav-bar {
    background: #f8f9fa !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: block !important;
    min-height: 44px;
    padding: 0;
}

.aaima-nav.minimal-nav-bar .aaima-nav-inner {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.aaima-nav.minimal-nav-bar .aaima-nav-scroll-wrapper {
    flex: 1;
    display: flex !important;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.aaima-nav.minimal-nav-bar .aaima-nav-scroll-container {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.aaima-nav.minimal-nav-bar .aaima-nav-scroll-container::-webkit-scrollbar {
    display: none;
}

.aaima-nav.minimal-nav-bar .aaima-nav-menu {
    display: flex !important;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.aaima-nav.minimal-nav-bar .aaima-nav-menu > li > a {
    display: block;
    color: #333 !important;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: border-color 0.15s, background-color 0.15s;
}

.aaima-nav.minimal-nav-bar .aaima-nav-menu > li > a:hover {
    color: #000 !important;
    border-color: #333;
    background: rgba(0, 0, 0, 0.03);
}

.aaima-nav.minimal-nav-bar .nav-scroll-btn {
    background: linear-gradient(to right, #f8f9fa 70%, transparent);
    border: none;
    color: #333 !important;
    padding: 10px 15px 10px 10px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aaima-nav.minimal-nav-bar .nav-scroll-btn.nav-scroll-right {
    background: linear-gradient(to left, #f8f9fa 70%, transparent);
    padding: 10px 10px 10px 15px;
}

.aaima-nav.minimal-nav-bar .nav-scroll-btn:hover {
    opacity: 0.7;
}

.minimal-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.minimal-search-overlay.active {
    display: flex;
}

.minimal-search-overlay .search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.minimal-search-overlay .search-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    opacity: 0.7;
    padding: 10px;
}

.minimal-search-overlay .search-close:hover {
    opacity: 1;
}

.minimal-search-wrapper {
    position: relative;
    width: 100%;
}

.minimal-search-form .search-field {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    padding: 20px 0;
    font-size: 24px;
    text-align: center;
    background: transparent;
    outline: none;
}

.minimal-search-overlay .search-hint {
    display: block;
    margin-top: 20px;
    color: #999;
    font-size: 13px;
}

.minimal-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-height: 50vh;
    overflow-y: auto;
    z-index: 999999;
    display: none;
    margin-top: 15px;
    text-align: left;
}

.minimal-search-results.active {
    display: block;
}

/* Minimal Header Toggle */
.minimal-header .minimal-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE - NEW HEADERS
   ========================================================================== */
@media (max-width: 992px) {
    /* Travel */
    .travel-topbar .topbar-left,
    .travel-topbar .topbar-locale {
        display: none;
    }
    
    .travel-header .travel-nav {
        display: none;
    }
    
    .travel-header .header-action .action-label {
        display: none;
    }
    
    /* Restaurant */
    .restaurant-topbar .topbar-left,
    .restaurant-topbar .topbar-center {
        display: none;
    }
    
    .restaurant-header .header-nav-left,
    .restaurant-header .header-nav-right {
        display: none;
    }
    
    .restaurant-header .restaurant-logo {
        position: static;
        transform: none;
    }
    
    .restaurant-header .header-cta-group {
        display: none;
    }
    
    .restaurant-phone-bar {
        display: block;
    }
    
    /* Minimal */
    .minimal-topbar {
        display: none;
    }
    
    .minimal-header .minimal-nav {
        display: none;
    }
    
    .minimal-header .minimal-toggle {
        display: block;
    }
    
    .minimal-header .minimal-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .travel-header .travel-cta span {
        display: none;
    }
    
    .travel-header .travel-cta {
        padding: 12px;
        border-radius: 50%;
    }
    
    .restaurant-header .restaurant-logo img {
        max-height: 45px;
    }
}
