.b2b-search-container {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 12px 0;
    font-family: inherit;
}

.b2b-search-logo {
    flex-shrink: 0;
}

.b2b-search-logo img {
    max-height: 56px;
    width: auto;
    display: block;
}

.b2b-search-form {
    flex-grow: 1;
    max-width: 600px;
    width: 100%;
}

.b2b-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #dcdfe6;
    border-radius: 12px;
    background-color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 50px;
    padding: 0 16px;
}

.b2b-search-input-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.b2b-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #909399;
    margin-right: 12px;
    flex-shrink: 0;
}

.b2b-search-icon svg.search-svg {
    width: 20px;
    height: 20px;
}

.b2b-search-field {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    height: 100%;
    font-size: 15px;
    color: #303133;
    padding: 0;
}

.b2b-search-field::placeholder {
    color: #a8abb2;
}

.b2b-search-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.b2b-search-divider {
    width: 1px;
    height: 20px;
    background-color: #e4e7ed;
    margin-right: 4px;
}

.b2b-action-btn {
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
    color: #909399;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.b2b-action-btn:hover {
    color: #303133;
}

.b2b-action-btn svg.action-svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .b2b-search-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .b2b-search-logo {
        display: flex;
        justify-content: center;
    }
    
    .b2b-search-form {
        max-width: 100%;
    }
}
