/* ==========================================================================
   MAIN SYSTEM STYLES (HEADER, NAVIGATION, FOOTER & GRID CONTROLS)
   ========================================================================== */

/* 1. Main Header Layout Panels */
.site-header {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 2. Desktop Navigation Menu Tree */
.main-navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-navigation a {
    font-size: 14px;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #718096;
}

/* 3. Main Catalog Layout Structure */
.shop-layout-container {
    display: flex;
    gap: 30px;
    width: 92%;
    margin: 40px auto;
}

.content-area {
    flex: 1;
}

/* 4. Global Site Footer System Layouts */
.site-footer {
    background-color: #fafafa;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 60px;
}

/* ==========================================================================
   HIJAMA EQUIP NAVBAR EXACT REPLICA STYLE CONFIGURATIONS
   ========================================================================== */

/* 1. Top Announcement Bar Sizing and Colors */
.top-announcement-bar {
    width: 100%;
    background-color: #111111; /* Solid dark theme utility bar */
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.2px;
}

/* 2. Main Header Fixed Boundaries Layout Frame */
.site-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 0;
    position: relative;
    z-index: 999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%; /* Maintains uniform alignment across your design layout components */
    margin: 0 auto;
}

/* 3. Logo Typography Layout Styles */
.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.5px;
    text-transform: none;
}

.logo-dot {
    color: #22c55e; /* Vibrant signature green dot accent coloring pointer */
}

/* 4. Horizontal Navigation Link Array Elements Rules */
.hijama-nav-menu {
    display: flex;
    align-items: center;
    gap: 24px; /* Balanced horizontal margins between links */
    list-style: none;
}

.hijama-nav-menu a {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    padding: 6px 0;
    text-transform: capitalize;
    transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hijama-nav-menu a:hover {
    color: #22c55e; /* Changes text color to theme green upon pointer overlay interactions */
}

/* 5. Utility Tracking Buttons Layout Controls */
.header-utilities {
    display: flex;
    align-items: center;
    gap: 18px;
}

.utility-icon-link {
    font-size: 16px;
    color: #334155;
    text-decoration: none;
}

.utility-icon-link:hover {
    color: #22c55e;
}

.cart-link {
    position: relative;
}

.cart-pill-count {
    position: absolute;
    top: -8px; right: -12px;
    background-color: #22c55e; /* Matches branding accent keys */
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    width: 15px; height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
