/* Header Structural Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Header Main Top Section */
.header-main {
    padding: 15px 0;
}

.header-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #1a6b32;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 11px;
    color: #555;
    margin-top: 2px;
}

/* Search Bar Styling */
.header-search {
    flex-grow: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
}

.search-field {
    width: 100%;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-submit {
    background: #1a6b32;
    color: #ffffff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Icons (Account, Wishlist, Cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.icon-wrap {
    position: relative;
}

.icon-wrap .badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #1a6b32;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Nav Row */
.header-nav-bar {
    border-top: 1px solid #f0f0f0;
    padding: 10px 0;
}

.header-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all-categories-dropdown .cat-btn {
    background: #1a6b32;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.main-navigation .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 4px;
}

.main-navigation .nav-menu li.active a,
.main-navigation .nav-menu a:hover {
    color: #1a6b32;
    border-bottom: 2px solid #1a6b32;
}

.header-delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a6b32;
}

.header-delivery-info strong {
    display: block;
    font-size: 13px;
}

.header-delivery-info small {
    color: #666;
    font-size: 11px;
}