/*
THE GUN DOCK - PROFESSIONAL DARK THEME
Sophisticated, weathered, competitive - NO silly pirate stuff
*/

:root {
    --dark-primary: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --accent-red: #ff4757;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-muted: #ced4da;
    --text-readable: #f1f3f4;
    --text-header: #ffffff;
    --border-dark: #495057;
    --shadow-strong: 0 4px 15px rgba(0,0,0,0.4);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Professional Dark Header */
.header-professional {
    background: var(--dark-primary);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-strong);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-topbar-pro {
    background: var(--gradient-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.header-topbar-pro .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-info-pro {
    color: var(--text-header);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info-pro a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-pro a:hover {
    color: #ffffff;
}

.promo-text-pro {
    color: var(--accent-red);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Main Header */
.header-main-pro {
    background: var(--dark-secondary);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-dark);
}

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

.logo-pro {
    max-height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-pro:hover {
    transform: scale(1.02);
}

/* Professional Search */
.search-pro {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    position: relative;
}

.search-pro input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 4rem;
    background: #000000;
    border: 2px solid var(--border-dark);
    border-radius: 4px;
    color: var(--text-header);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-pro input::placeholder {
    color: #aaaaaa;
}

.search-pro input:focus {
    outline: none;
    border-color: var(--accent-red);
    background: #111;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.2);
}

.search-pro button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 1.5rem;
    background: var(--accent-red);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.search-pro button:hover {
    background: #a81729;
}

/* Header Actions */
.actions-pro {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.action-pro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.action-pro:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.action-pro i {
    font-size: 1.4rem;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Professional Navigation */
.nav-pro {
    background: var(--dark-primary);
    border-top: 1px solid var(--border-dark);
}

.nav-pro .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-pro ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-around;
}

.nav-pro a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-header);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-pro a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-pro a:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.nav-pro a:hover::after {
    width: 80%;
}

.nav-pro .deals-highlight {
    color: var(--accent-red) !important;
    font-weight: 700;
}

/* Stats Bar */
.stats-pro {
    background: var(--dark-secondary);
    padding: 1rem 0;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--border-dark);
}

.stats-content-pro {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-pro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-header);
    font-size: 0.8rem;
    font-weight: 500;
}

.stat-pro i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Professional Buttons */
.btn-pro-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.btn-pro-primary:hover {
    background: #a81729;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.btn-pro-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pro-secondary:hover {
    background: var(--accent-gold);
    color: var(--dark-primary);
    transform: translateY(-2px);
}

/* Professional Cards */
.card-pro {
    background: var(--dark-secondary);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-pro:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Typography */
.heading-pro {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-pro {
    color: var(--text-readable);
    line-height: 1.6;
}

.text-muted-pro {
    color: var(--text-muted);
}

.accent-text {
    color: var(--accent-red);
    font-weight: 600;
}

.gold-text {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Professional Backgrounds */
.bg-dark-primary {
    background: var(--dark-primary);
}

.bg-dark-secondary {
    background: var(--dark-secondary);
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-main-pro .container-fluid {
        flex-direction: column;
        gap: 1rem;
    }

    .search-pro {
        margin: 0;
        max-width: 100%;
    }

    .stats-content-pro {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .actions-pro {
        gap: 0.5rem;
    }

    .action-pro {
        padding: 0.5rem;
        font-size: 0.7rem;
    }

    .action-pro i {
        font-size: 1.2rem;
    }

    .nav-pro ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-pro a {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .btn-pro-primary,
    .btn-pro-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Clean scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}