/* ============================================
   TOP BAIC INSPIRED PREMIUM DESIGN
   Modern, Clean, Automotive E-Commerce Style
   ============================================ */

/* ============================================
   1. MODERN VARIABLES & RESETS
   ============================================ */

:root {
    /* Premium Color Palette (TOP BAIC Style) */
    --primary-dark: #1a1a1a;
    --primary-black: #000000;
    --accent-gold: #c9a961;
    --accent-blue: #2d5c8f;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-light: #e5e5e5;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-primary: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   2. TOP BAIC STYLE HEADER/NAVBAR
   ============================================ */

.topbaic-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.topbaic-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--primary-black);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    transition: color var(--transition-fast);
}

.header-top a:hover {
    color: var(--accent-gold);
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbaic-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-black);
    text-decoration: none;
    text-transform: uppercase;
}

.topbaic-logo:hover {
    color: var(--accent-gold);
}

.topbaic-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.topbaic-nav>a,
.topbaic-nav .nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition-fast);
}

.topbaic-nav>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-normal);
}

.topbaic-nav>a:hover {
    color: var(--accent-gold);
}

.topbaic-nav>a:hover::after {
    width: 100%;
}

/* Categories Dropdown */
.nav-item {
    position: relative;
    cursor: pointer;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-normal);
}

.nav-item:hover>a {
    color: var(--accent-gold);
}

.nav-item:hover>a::after {
    width: 100%;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform var(--transition-fast);
    font-size: 10px;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.categories-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    background: white;
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.nav-item:hover .categories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-dropdown a {
    display: block;
    padding: 12px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.categories-dropdown a:hover {
    background: var(--bg-light);
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
    padding-left: 28px;
}

.categories-dropdown a.all-categories {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-black);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-primary);
    position: relative;
    transition: color var(--transition-fast);
}

.icon-btn:hover {
    color: var(--accent-gold);
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gold);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ============================================
   3. BREADCRUMB (TOP BAIC STYLE)
   ============================================ */

.topbaic-breadcrumb {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.breadcrumb-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.breadcrumb-separator {
    color: var(--text-light);
}

/* ============================================
   4. COLLECTION HEADER (TOP BAIC STYLE)
   ============================================ */

.collection-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.collection-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.collection-description {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.collection-count {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   5. FILTER BAR (TOP BAIC STYLE)
   ============================================ */

.filter-bar {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    margin-bottom: 40px;
}

.filter-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.filter-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 8px 20px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.filter-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-white);
    cursor: pointer;
    font-weight: 500;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    background: none;
    border: 1px solid var(--border-light);
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.view-btn.active {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: white;
}

/* ============================================
   6. PRODUCT GRID (TOP BAIC STYLE)
   ============================================ */

.topbaic-products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.topbaic-product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.topbaic-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

/* Product Image Container */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.topbaic-product-card:hover .product-image {
    transform: scale(1.05);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge {
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.badge-new {
    background: var(--accent-blue);
}

.badge-sale {
    background: #e74c3c;
}

.badge-topseller {
    background: #f39c12;
}

.badge-limited {
    background: var(--accent-gold);
}

.badge-free-shipping {
    background: #27ae60;
}

/* Quick Actions */
.quick-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-normal);
}

.topbaic-product-card:hover .quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    background: white;
    border: 1px solid var(--border-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 16px;
    color: var(--text-primary);
}

.quick-action-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-vendor {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: var(--primary-black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-title a:hover {
    color: var(--accent-gold);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: var(--accent-gold);
    font-size: 14px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-black);
}

.price-original {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-save {
    font-size: 13px;
    color: #e74c3c;
    font-weight: 600;
}

.product-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Add to Cart Button (TOP BAIC Style) */
.add-to-cart-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-black);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: left var(--transition-normal);
    z-index: 0;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn span {
    position: relative;
    z-index: 1;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
}

.stock-dot.low {
    background: #f39c12;
}

.stock-dot.out {
    background: #e74c3c;
}

/* ============================================
   7. FREE DELIVERY BANNER (TOP BAIC STYLE)
   ============================================ */

.topbaic-delivery-banner {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
}

.delivery-icon {
    font-size: 20px;
}

/* ============================================
   8. PAGINATION (TOP BAIC STYLE)
   ============================================ */

.topbaic-pagination {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.pagination-btn.active {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: white;
}

/* ============================================
   9. FOOTER (TOP BAIC STYLE)
   ============================================ */

.topbaic-footer {
    background: var(--primary-black);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* Social Media Links Styling */
.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Specific social media colors on hover */
.social-link:nth-child(1):hover {
    /* Instagram gradient */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    color: white;
}

.social-link:nth-child(2):hover {
    /* Facebook blue */
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-link:nth-child(3):hover {
    /* Snapchat yellow */
    background: #fffc00;
    border-color: #fffc00;
    color: #000;
}

.social-link:nth-child(4):hover {
    /* YouTube red */
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-link:nth-child(5):hover {
    /* TikTok colors */
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    border-color: #00f2ea;
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: #999999;
}

/* ============================================
   10. RESPONSIVE (MOBILE FIRST)
   ============================================ */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-wrap: wrap;
        gap: 20px;
    }

    .topbaic-nav {
        display: none;
        /* Mobile menu needed */
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .collection-title {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .filter-content {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 16px;
    }

    .collection-header {
        padding: 30px 20px;
    }
}

/* ============================================
   11. PREMIUM TOUCHES
   ============================================ */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-gold);
    color: white;
}

/* Focus Styles */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Premium Hover Effects */
.premium-hover {
    transition: all var(--transition-normal);
}

.premium-hover:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   END OF TOP BAIC PREMIUM STYLES
   ============================================ */
/* ============================================================
   ADD THIS TO YOUR topbaic-style.css
   Replace or update existing header/controls styles
   ============================================================ */

/* ── Remove old floating controls ── */
.controls-container {
    display: none !important;
}

/* ── Header Top Bar ── */
.header-top {
    background: #111111;
    padding: 7px 0;
    font-size: 0.82rem;
}

.header-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
}

.header-contact svg {
    vertical-align: middle;
    flex-shrink: 0;
    opacity: 0.7;
}

.header-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Right Controls: Lang + Currency */
.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 2px;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    line-height: 1;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    padding: 3px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.4;
}

.lang-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: white;
    color: #111;
}

/* Currency Wrapper */
.currency-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 3px 10px;
    transition: all 0.2s ease;
}

.currency-wrapper:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.currency-wrapper svg {
    opacity: 0.6;
    flex-shrink: 0;
    color: white;
}

/* Currency Select - clean invisible select */
.currency-select {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    padding: 0;
    min-width: 52px;
    line-height: 1.4;
}

.currency-select option {
    background: #1a1a1a;
    color: white;
    font-weight: 500;
}

/* ── Main Header ── */
.header-main {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
}

.header-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ── RTL Support ── */
body[dir="rtl"] .header-top-inner,
body[dir="rtl"] .header-main-inner {
    flex-direction: row-reverse;
}

body[dir="rtl"] .header-controls {
    flex-direction: row-reverse;
}

body[dir="rtl"] .header-contact {
    flex-direction: row-reverse;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .header-top-inner {
        justify-content: flex-end;
    }

    .header-controls {
        gap: 10px;
    }

    .lang-btn {
        padding: 3px 8px;
    }

    .currency-wrapper {
        padding: 3px 8px;
    }

    .currency-select {
        min-width: 44px;
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 5px 0;
    }
}