.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section Common Styles */
.page-header, .hero-section {
    background: linear-gradient(to bottom, rgba(0, 113, 220, 0.05), rgba(0, 113, 220, 0.1));
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: #F8FAFC;
}

.site-logo {
    width: auto;
    height: 2.75rem; /* 44px for mobile */
    object-fit: contain;
    transform-origin: left center;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .site-logo {
        height: 3.5rem; /* 56px for desktop */
    }
}

.site-logo:hover {
    transform: scale(1.05);
}

.search-container {
    max-width: 500px;
    width: 100%;
    margin: 0 1rem;
    position: relative;
}

.nav-item {
    position: relative;
    transition: all 0.2s ease;
}

.nav-item:hover {
    color: #FFC220;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FFC220;
    color: #0071DC;
    font-size: 0.75rem;
    font-weight: 600;
    height: 20px;
    width: 20px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.cart-icon:hover .cart-count {
    transform: scale(1.1);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 64px; /* Match header height */
    left: 0;
    right: 0;
    background-color: #0071DC;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 40;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-button:hover {
    opacity: 0.8;
}

.mobile-menu-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Enhanced Search Bar */
.search-input {
    width: 100%;
    padding: 0.625rem 1rem;
    padding-right: 3rem;
    border: 2px solid transparent;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.2s ease;
}

.search-input:focus {
    border-color: #FFC220;
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 194, 32, 0.2);
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    color: #0071DC;
    transition: all 0.2s ease;
}

.search-button:hover {
    color: #005bb1;
    transform: translateY(-50%) scale(1.05);
}

a:focus, a:active {
    outline: none !important;
    box-shadow: none !important;
}