/* Product Page Header Styles */

/* Header Right Navigation */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right .welcome-msg {
    color: white;
    font-size: 14px;
    margin-right: 10px;
}

.header-right a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.header-right a:hover {
    color: #FF9900;
}

.login-link {
    background-color: #FF9900;
    color: #111 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.login-link:hover {
    background-color: #F08804;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: #FF9900;
}

/* Hamburger Animation */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #131921;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a,
    .nav-menu .welcome-msg {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 16px;
        display: block;
    }
    
    .nav-menu .welcome-msg {
        color: #FF9900;
        font-weight: 600;
        margin-right: 0;
    }
    
    .login-link {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        display: block;
    }
}

/* Desktop - hide hamburger */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: none !important;
        flex-direction: row !important;
    }
}
