/* Extracted from header-custom.php - Search Field Styles */
.astra-search-field-container {
    width: 100%;
    max-width: 415px;
    margin: 0 auto;
}

.astra-search-form { width: 100%; }

.astra-search-input-wrapper {
    position: relative;
    display: flex;
    width: 415px;
    height: 44px;
    padding: 13px 16px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #949494;
    background: #F8F8F8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.astra-search-input-wrapper:focus-within {
    border-color: #000000;
    box-shadow: none;
}

.astra-search-input {
    flex: 1;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1f2937;
    line-height: 1.5;
    height: 100%;
}

.astra-search-input::placeholder { color: #9ca3af; font-weight: 400; }

.astra-search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
    height: 100%;
    width: auto;
}
.astra-search-button:hover { color: #3b82f6; }

.astra-search-icon,
.astra-clear-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.astra-clear-icon { display: none; }

.astra-search-input-wrapper.active { border-color: #000; box-shadow: none; }
.astra-search-input-wrapper.active .astra-search-icon { display: none; }
.astra-search-input-wrapper.active .astra-clear-icon { display: block; }

@media (max-width: 1024px) {
    .astra-search-field-container { max-width: unset; }
    .astra-search-input-wrapper { width: 100%; max-width: unset; }
}
@media (max-width: 480px) {
    .astra-search-field-container { max-width: unset; padding: 0 10px; }
    .astra-search-input-wrapper { width: 100%; max-width: unset; height: 40px; padding: 10px 14px; }
    .astra-search-input { font-size: 14px; }
}

/* Extracted from header-custom.php - Consolidated Header Styles */
.top-black-bar {
    background: #000000 !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 5px 28px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1001 !important;
}
.top-black-bar .left-text { font-size: 14px !important; color: #ffffff !important; font-weight: 400 !important; }
.top-black-bar .right-links { display: flex !important; gap: 32px !important; }
.top-black-bar .right-links a { color: #ffffff !important; text-decoration: none !important; font-size: 14px !important; transition: opacity 0.2s ease !important; }
/* .top-black-bar .right-links a:hover { background-color: #f3f4f6 !important; text-decoration: none !important; color: inherit !important; } */

.main-header { background: #ffffff !important; padding: 20px 28px !important; }

/* Add more selectors from header-custom.php here if needed */


