/* Estilos para el header */
.top-bar {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

/* Estilos para el selector de divisa */
.currency-selector {
    display: flex;
    align-items: center;
}

.currency-selector select {
    min-width: 90px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.currency-selector select:focus {
    border-color: #E8C423 !important;
    box-shadow: 0 0 0 0.2rem rgba(232, 196, 35, 0.25) !important;
}

.currency-selector select option {
    background-color: #2d2d2d;
    color: #fff;
}

@media (max-width: 768px) {
    .currency-selector {
        margin-bottom: 10px;
    }
    
    .d-flex.align-items-center.justify-content-end {
        flex-direction: column;
        align-items: center !important;
    }
}

.navbar {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a) !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.navbar-nav .nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
    padding: 8px 15px !important;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

.social-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffc107 !important;
}

.dropdown-menu {
    background: #2d2d2d;
    border: 1px solid #444;
}

.dropdown-item {
    color: #fff;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #444;
    color: #ffc107;
}

#cart-count {
    font-size: 0.75rem;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
}