/* ===== HEADER - INCREASED HEIGHT ===== */

.header {
    background: #000000; /* Pure black */
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px; /* Increased from 60px to 80px */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Match header height */
}

/* Left Section - Logo + Brand */
.header-left {
    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo {
    height: 65px; /* Much larger - fills most of 80px header */
    width: auto;
    display: block;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 24px; /* Slightly larger text */
    font-weight: 700;
    color: var(--brand-gold);
    letter-spacing: 2px;
}

/* Right Section - Navigation + Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation */
.navigation {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--neutral-200);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-gold);
}

.nav-link.active {
    color: var(--brand-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-gold);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Minimal Bag Icon - UrbanHides Style */
.minimal-bag-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-200); /* Same as navigation text */
    transition: color 0.3s ease;
}

.minimal-bag-icon svg {
    width: 100%;
    height: 100%;
}

/* Bag Link Container */
/* Bag Link - Fixed to match navigation */
.bag-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--neutral-200);
    padding: 8px 12px;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bag-link:hover {
    color: var(--brand-gold);
}

.bag-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.bag-link:hover::after {
    width: 100%;
}

/* Minimal Bag Icon */
.minimal-bag-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor; /* Inherit from parent */
    transition: color 0.3s ease;
}

.minimal-bag-icon svg {
    width: 100%;
    height: 100%;
}

/* Bag Count - Fixed Position */
.bag-count {
    background: var(--brand-gold);
    color: var(--brand-black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 6px;
    right: 6px;
    font-weight: 600;
    border: 2px solid #000000; /* Black border to stand out on black header */
}
.login-btn {
    color: var(--brand-gold);
    border: 1px solid var(--brand-gold);
    padding: 10px 20px; /* Slightly larger button */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--brand-gold);
    color: var(--brand-black);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 768px) {
    .header {
        height: 70px; /* Slightly smaller on tablet */
    }
    
    .header-inner {
        height: 70px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .logo {
        height: 55px; /* Adjusted for tablet */
    }
    
    .navigation {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .header {
        height: 65px;
    }
    
    .header-inner {
        height: 65px;
    }
    
    .brand-name {
        display: none;
    }
    
    .logo {
        height: 50px; /* Still prominent on mobile */
    }
    
    .navigation {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header {
        height: 60px;
    }
    
    .header-inner {
        height: 60px;
    }
    
    .logo {
        height: 45px; /* Good size even on small mobile */
    }
    
    .cart-link {
        padding: 6px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}