/* UPDATED: Darker Header Background */
.navbar {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    border-bottom: 1px solid rgba(43, 108, 176, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Make navbar brand stand out on dark background */
.navbar-brand {
    color: white !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* ALL BUTTONS - 10px BORDER RADIUS */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-link,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.bnpl-button,
.btn-custom,
.btn-custom-outline,
.btn-service,
.btn-view-more,
.btn-view-all,
.navbar-toggler,
.dropdown-item,
.page-link,
.badge,
.card .btn,
.modal .btn,
.btn-group .btn,
[class*="btn-"] {
    border-radius: 10px !important;
}

/* FORCE all BNPL buttons to be blue - ULTRA SPECIFIC */
a.bnpl-button,
.bnpl-button,
.navbar .bnpl-button,
.navbar-nav .bnpl-button,
.d-xxl-none .bnpl-button,
.navbar-nav.ms-auto .bnpl-button,
.navbar-nav .nav-item .bnpl-button,
a.bnpl-button:link,
a.bnpl-button:visited {
    background-color: rgb(43, 108, 176) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    font-style: normal !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Force hover states */
a.bnpl-button:hover,
a.bnpl-button:focus,
a.bnpl-button:active,
.bnpl-button:hover,
.bnpl-button:focus,
.bnpl-button:active {
    background-color: rgb(33, 88, 146) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3) !important;
    outline: none !important;
    border: none !important;
    font-style: normal !important;
    border-radius: 10px !important;
}

/* Mobile BNPL button specific */
.d-xxl-none a.bnpl-button,
.d-xxl-none .bnpl-button {
    padding: 12px 20px !important;
    font-size: 1rem !important;
    width: 100% !important;
    text-align: center !important;
    font-style: normal !important;
    border-radius: 10px !important;
}

/* Make header links turn blue when hovered, clicked, or active - NO BOX, NO UNDERLINE */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link.active {
    color: rgb(43, 108, 176) !important;
    font-style: normal !important;
    background-color: transparent !important; /* Remove any background */
    text-decoration: none !important; /* Remove any underline */
    outline: none !important; /* Remove any outline */
    box-shadow: none !important; /* Remove any box shadow */
}

/* Make dropdown items blue when hovered/clicked - NO BOX */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    background-color: rgb(43, 108, 176) !important;
    color: white !important;
    font-style: normal !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove ALL focus outlines and boxes from navigation links */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link:focus-within {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
}

/* Remove any Bootstrap focus styles from nav links */
.navbar-nav .nav-link:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

/* Remove the yellow focus outline from all header elements */
.navbar a:focus,
.navbar button:focus,
.navbar .nav-link:focus,
.navbar .dropdown-item:focus,
.navbar .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

/* Keep focus outline only on interactive elements outside navbar */
a:focus:not(.navbar a):not(.navbar .nav-link):not(.navbar .dropdown-item),
button:focus:not(.navbar button):not(.navbar .navbar-toggler),
.nav-link:focus:not(.navbar .nav-link),
.dropdown-item:focus:not(.navbar .dropdown-item),
.navbar-toggler:focus:not(.navbar .navbar-toggler),
.bnpl-button:focus,
.btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(43, 108, 176, 0.25) !important;
}

/* Change the Special Offer Button from info to blue */
#reopenAdModalBtn {
    background-color: rgb(43, 108, 176) !important;
    color: white !important;
    border: none !important;
    font-style: normal !important;
    border-radius: 10px !important;
}

#reopenAdModalBtn:hover {
    background-color: rgb(33, 88, 146) !important;
    font-style: normal !important;
    border-radius: 10px !important;
}

/* Make all text normal - no italic, no special styling */
* {
    font-style: normal !important;
}

/* Override any specific elements that might have italic styling */
h1, h2, h3, h4, h5, h6, p, a, span, div, button, .modal-title, .navbar-brand, .nav-link, .dropdown-item {
    font-style: normal !important;
}

/* Remove any Bootstrap italic classes */
.fst-italic, .font-italic {
    font-style: normal !important;
}

/* Active link styling - ONLY BLUE TEXT, NO BACKGROUND */
.navbar-nav .nav-link.active {
    color: rgb(43, 108, 176) !important;
    font-weight: 600 !important;
    background-color: transparent !important;
    text-decoration: none !important;
}

.dropdown-item.active {
    background-color: rgb(43, 108, 176) !important;
    color: white !important;
}

/* Main content spacing */
main {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
}

/* UNIFORM PROFESSIONAL FOOTER STYLES - Enhanced Spacing */
.uniform-footer {
    background-color: #1a1a1a;  /* YOUR ORIGINAL COLOR */
    color: #fff;
    position: relative;
    padding: 70px 0 0;  /* Increased top padding */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Accent Line - Using your blue */
.footer-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(43, 108, 176), #E5C287, rgb(43, 108, 176));
}

/* Brand Styles */
.footer-brand-uniform {
    margin-bottom: 15px;
}

.footer-logo-uniform {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-logo-uniform span {
    color: rgb(43, 108, 176);  /* YOUR BLUE */
    font-weight: 400;
    font-size: 1rem;
    display: block;
    margin-top: 5px;
}

.footer-description {
    color: #aaa;  /* YOUR ORIGINAL TEXT COLOR */
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-right: 15px;
}

/* Footer Titles */
.footer-title-uniform {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.footer-title-uniform i {
    color: rgb(43, 108, 176);
    font-size: 1.6rem;
}

/* Contact Styles */
.footer-contact-uniform {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-uniform li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-icon-uniform {
    width: 36px;
    height: 36px;
    background: rgba(43, 108, 176, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(43, 108, 176);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-uniform li:hover .contact-icon-uniform {
    background: rgb(43, 108, 176);
    color: #fff;
}

.contact-text span {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hours Styles */
.footer-hours-uniform {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 20px;
    margin-top: 0;
}

.hours-row-uniform {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #aaa;
    font-size: 0.95rem;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

.hours-row-uniform:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hours-row-uniform span:last-child {
    color: #fff;
    font-weight: 500;
}

.closed-uniform {
    color: #ff6b6b !important;
}

/* Social Styles */
.footer-social-uniform {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-uniform {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-uniform:hover {
    transform: translateY(-5px);
}

.social-uniform.facebook:hover { background: #1877f2; }
.social-uniform.email:hover { background: #ea4335; }

/* Newsletter Styles */
.newsletter-uniform-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 400;
}

.newsletter-uniform {
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    margin: 0 0 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.newsletter-input-uniform {
    display: flex;
    gap: 12px;
    width: 100%;
}

.uniform-input {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.uniform-input:focus {
    outline: none;
    border-color: rgb(43, 108, 176);
    background: rgba(43, 108, 176, 0.1);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15);
}

.uniform-input::placeholder {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.uniform-submit {
    background: rgb(43, 108, 176);
    border: none;
    color: #fff;
    width: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.uniform-submit:hover {
    background: rgb(33, 88, 146);
    transform: scale(1.08);
}

.newsletter-uniform-note {
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    margin-bottom: 0;
    justify-content: center;
}

.newsletter-uniform-note i {
    color: rgb(43, 108, 176);
    font-size: 0.8rem;
}

/* Stats Bar */
.footer-stats-uniform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-item-uniform {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.stat-number-uniform {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(43, 108, 176);
    line-height: 1.2;
}

.stat-label-uniform {
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.stat-divider-uniform {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.1);
}

/* Copyright Bar */
.footer-copyright-uniform {
    background-color: #111;
    margin: 0 -15px;
    padding: 25px 35px;
    border-radius: 20px 20px 0 0;
}

.copyright-uniform {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.signature-uniform {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.signature-uniform span {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.signature-uniform i {
    color: #ff4d4d;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .uniform-footer {
        padding: 50px 0 0;
    }
    
    .footer-stats-uniform {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .stat-item-uniform {
        width: calc(50% - 15px);
    }
    
    .stat-divider-uniform {
        display: none;
    }
    
    .footer-social-uniform {
        justify-content: center;
    }
    
    .newsletter-uniform {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer-title-uniform {
        margin-top: 25px;
    }
    
    .footer-title-uniform:first-of-type {
        margin-top: 0;
    }
    
    .newsletter-uniform {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .newsletter-input-uniform {
        flex-direction: column;
    }
    
    .uniform-submit {
        width: 100%;
        padding: 12px;
    }
    
    .stat-item-uniform {
        width: 100%;
    }
    
    .footer-copyright-uniform {
        padding: 20px;
    }
    
    .hours-row-uniform {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* GUARANTEED BLUE BUTTON FIX - ULTIMATE OVERRIDE */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-link,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.bnpl-button,
.btn-custom,
.btn-custom-outline,
.btn-service,
.btn-view-more,
.btn-view-all,
.navbar-toggler,
.dropdown-item,
.page-link,
.badge,
.card .btn,
.modal .btn,
.btn-group .btn,
[class*="btn-"] {
    border-radius: 10px !important;
}

/* ULTIMATE CLEAN BLUE BUTTON - NO RED BACKGROUND */
.bnpl-button,
a.bnpl-button,
.navbar .bnpl-button,
.navbar-nav .bnpl-button,
.d-xxl-none .bnpl-button,
.navbar-nav.ms-auto .bnpl-button,
.navbar-nav .nav-item .bnpl-button,
.navbar-nav .nav-link.bnpl-button,
.navbar .container .bnpl-button {
    background: rgb(43, 108, 176) !important;
    background-color: rgb(43, 108, 176) !important;
    background-image: none !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: none !important;
    text-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    filter: none !important;
    opacity: 1 !important;
    font-style: normal !important;
}

/* Force remove any possible red background */
.bnpl-button::before,
.bnpl-button::after,
a.bnpl-button::before,
a.bnpl-button::after {
    display: none !important;
    background: none !important;
    background-color: transparent !important;
}

/* Clean hover state */
.bnpl-button:hover,
a.bnpl-button:hover {
    background: rgb(33, 88, 146) !important;
    background-color: rgb(33, 88, 146) !important;
    background-image: none !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3) !important;
    border: none !important;
    font-style: normal !important;
    border-radius: 10px !important;
}

/* Mobile version */
.d-xxl-none .bnpl-button,
.d-xxl-none a.bnpl-button {
    padding: 12px 20px !important;
    width: 100% !important;
    text-align: center !important;
    font-style: normal !important;
    border-radius: 10px !important;
}

/* Make absolutely sure no italic text exists */
* {
    font-style: normal !important;
}

h1, h2, h3, h4, h5, h6, p, a, span, div, button, .modal-title, .navbar-brand, .nav-link, .dropdown-item, .card-title, .card-text, .lead, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-style: normal !important;
}

.fst-italic, .font-italic, em, i:not(.bi) {
    font-style: normal !important;
}