/* Web Expert IT Solutions - Professional Logo Styles */

.logo-container {
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text:hover {
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.5px;
}

/* Navbar specific styling */
.navbar-brand .logo-main {
    color: white !important;
}

.navbar-brand .logo-sub {
    color: #e5e7eb !important;
}

.navbar-brand .logo-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Admin login specific styling */
.admin-login-logo .logo-container {
    justify-content: center;
    margin-bottom: 20px;
}

.admin-login-logo .logo-text {
    align-items: center;
    text-align: center;
}

.admin-login-logo .logo-main {
    font-size: 24px;
}

.admin-login-logo .logo-sub {
    font-size: 14px;
}

/* Sidebar logo styling */
.sidebar-logo .logo-container {
    justify-content: center;
    margin-bottom: 15px;
}

.sidebar-logo .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-logo .logo-main {
    color: white !important;
    font-size: 16px;
}

.sidebar-logo .logo-sub {
    color: #cbd5e1 !important;
    font-size: 11px;
}

/* Compact version */
.logo-compact {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

.logo-compact .highlight {
    color: #059669;
}

.logo-compact:hover {
    text-decoration: none;
    color: #1e40af;
}

/* Cart Modal Styles */
#cartModal .modal-dialog {
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 60px);
}

#cartModal .modal-content {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: none;
    border-radius: 10px;
}

#cartModal .modal-header {
    border-radius: 10px 10px 0 0;
}

#cartModal .modal-footer {
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #dee2e6;
}
